home *** CD-ROM | disk | FTP | other *** search
- #include <stddef.h>
-
- #include "msgtxt.hpp"
-
- /*=========================================================================*/
-
- void MsgTxt::Init (char *_txt)
-
- {
- txt = txt_new (_txt);
- Kludges = NOKLUDGES;
- }
-
- void MsgTxt::operator << (char *_txt)
-
- {
- txt_add (txt, _txt);
- }
-
- void MsgTxt::KludgesOn (void)
-
- {
- Kludges = KLUDGES;
- }
-
- void MsgTxt::KludgesOff (void)
-
- {
- Kludges = NOKLUDGES;
- }
-